home *** CD-ROM | disk | FTP | other *** search
/ Champak 138 / Volume 138 Aug 19 2011 - Damaged.iso / Games / snowball.swf / scripts / DefineSprite_174 / frame_1 / DoAction.as
Text File  |  2011-08-19  |  209b  |  13 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.startmoving == 1)
  4.    {
  5.       this._y -= _root.snowball.yspeed;
  6.       if(_Y < -10)
  7.       {
  8.          _Y = 420;
  9.          _X = random(600);
  10.       }
  11.    }
  12. };
  13.